home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / Bitmap Libraries 2.0 / Examples / Digraph / Digraph.r < prev    next >
Text File  |  1996-02-27  |  1KB  |  65 lines

  1. /* File Digraph.r Copyright (C) 1996 by John R. Montbriand.  All Rights Reserved. */
  2.  
  3. /* File Digraph.r
  4.  
  5.     Copyright (C) 1996 by John Montbriand.  All Rights Reserved.
  6.     
  7.     Distribute freely in areas where the laws of copyright apply.
  8.     
  9.     Use at your own risk.
  10.     
  11.     Do not distribute modified copies.
  12.     
  13.     These various BitMap libraries and examples are for free!
  14.     
  15.     See the accompanying file BitMap.txt for details.
  16.     
  17. */
  18.  
  19. /* rez source file for the fat Digraph program */
  20.  
  21.  
  22. #include "Types.r"
  23. #include "CodeFragmentTypes.r"
  24.  
  25. include "Digraph.rsrc";
  26.  
  27.  
  28. resource 'SIZE' (-1, purgeable)  {
  29.     reserved,
  30.     acceptSuspendResumeEvents,
  31.     reserved,
  32.     canBackground,
  33.     doesActivateOnFGSwitch,
  34.     backgroundAndForeground,
  35.     dontGetFrontClicks,
  36.     ignoreAppDiedEvents,
  37.     is32BitCompatible,
  38.     isHighLevelEventAware,
  39.     localAndRemoteHLEvents,
  40.     isStationeryAware,
  41.     dontUseTextEditServices,
  42.     reserved,
  43.     reserved,
  44.     reserved,
  45.     1024 * 300,
  46.     1024 * 300
  47. };
  48.  
  49.  
  50. resource 'cfrg' (0) {
  51.    {
  52.       kPowerPC,
  53.       kFullLib,
  54.       kNoVersionNum,
  55.       kNoVersionNum,
  56.       kDefaultStackSize,
  57.       kNoAppSubFolder,
  58.       kIsApp,
  59.       kOnDiskFlat,
  60.       kZeroOffset,
  61.       kWholeFork,
  62.       "Digraph" 
  63.    }
  64. };
  65.